home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 151-175 / scopedisk168 / asmmacros / am_02 / close.i < prev    next >
Text File  |  1995-03-19  |  478b  |  21 lines

  1.      NOLIST
  2. Close          MACRO           ; 13 Sept 88
  3. *------------------------------; Start of Close macro.
  4.                                ; Put the file handle in D1.
  5.      NOLIST
  6.      IFEQ ReEntrant-1
  7.      LIST
  8.      MOVE.L \1(A5),D1
  9.      NOLIST
  10.      ENDC
  11.      IFNE ReEntrant-1
  12.      LIST
  13.      MOVE.L \1,D1
  14.      NOLIST
  15.      ENDC
  16.      LIST
  17.      CallLib Close,dos         ; Call Close to remove the file.
  18. *------------------------------; End of Close macro.
  19.      ENDM
  20.      LIST
  21.